home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2001 May / SGI Freeware 2001 May - Disc 1.iso / dist / fw_licq.idb / usr / freeware / bin / viewurl-w3m.sh.z / viewurl-w3m.sh
Linux/UNIX/POSIX Shell Script  |  2001-04-12  |  329b  |  15 lines

  1. #!/bin/sh
  2. #
  3. # A shell script to view a url using w3m and xterm
  4. # Set the XTERM variable to where your xterm binary is and 
  5. # the W3M variable to where your w3m binary is or
  6. # leave them as is if the binaries are in your path.
  7. # Graham Roff, October 1999.
  8. #
  9.  
  10. XTERM=xterm
  11. W3M=w3m
  12.  
  13. ${XTERM} -title "Licq URL View" -e ${W3M} "$1"
  14.